Fast Report WPF
Hello,
Do you plan to developpe Fast Report for WPF? If yes, in how many time it will be ready?
If no, do you have a sample for integrate a Fast Report .net in Wpf Application?
Thank you for your answer
Do you plan to developpe Fast Report for WPF? If yes, in how many time it will be ready?
If no, do you have a sample for integrate a Fast Report .net in Wpf Application?
Thank you for your answer
Comments
You can use FR.Net in WPF:
using (Report report = new Report())
{
report.Load(...);
report.RegisterData(your_dataset);
report.Show();
}
I need your help; I want to develop my software with windows presentation form using visual studio 2012. I tried to add fastreport.DLL and fastreportweb.DLL inside the toolbox but fastreport tools are not appearing; but when I creat a new winform project then fastreport tools are appearing; What can do son that those tools appeared un my wpf project?
Hi
Sample project as custom control in WPF
Best regards
Daniel
I bit changed project, to have designer control
But it works incorrect!
if (chbDesignReport.IsChecked == true)
{
report.Prepare();
host.DesControl.Report = report;
report.Design();
}
What do I wrong?
Thanks!!